home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / KeyManagementException.java < prev    next >
Text File  |  1998-10-14  |  1KB  |  57 lines

  1. /*
  2.  * @(#)KeyManagementException.java    1.6 98/07/01
  3.  *
  4.  * Copyright 1995-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  * 
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.security;
  16.  
  17. /**
  18.  * This is the general key management exception, for all operations
  19.  * dealing with key management. Subclasses 
  20.  * could include:
  21.  *
  22.  * <ul>
  23.  * <li>KeyIDConflict
  24.  * <li>KeyAuthorizationFailureException
  25.  * <li>ExpiredKeyException
  26.  * </ul>
  27.  *
  28.  * @version 1.6, 98/10/05
  29.  * @author Benjamin Renaud
  30.  *
  31.  * @see Key
  32.  * @see KeyException
  33.  */
  34.  
  35. public class KeyManagementException extends KeyException {
  36.  
  37.     /**
  38.      * Constructs a KeyManagementException with no detail message. A
  39.      * detail message is a String that describes this particular
  40.      * exception.
  41.      */
  42.     public KeyManagementException() {
  43.     super();
  44.     }
  45.  
  46.      /**
  47.      * Constructs a KeyManagementException with the specified detail
  48.      * message. A detail message is a String that describes this
  49.      * particular exception.  
  50.      *
  51.      * @param msg the detail message.  
  52.      */
  53.    public KeyManagementException(String msg) {
  54.     super(msg);
  55.     }
  56. }
  57.